home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-04-21 | 592 b | 31 lines |
- package com.symantec.itools.swing.borders;
-
- import java.awt.Insets;
-
- public class EmptyBorder
- extends com.sun.java.swing.border.EmptyBorder
- implements java.io.Serializable
- {
- public EmptyBorder()
- {
- super(0,0,0,0);
- }
-
- //
- // Properties
- //
-
- public Insets getInsets()
- {
- return new Insets(top,left,bottom,right);
- }
-
- public void setInsets(Insets newInsets)
- {
- top = newInsets.top;
- left = newInsets.left;
- bottom = newInsets.bottom;
- right = newInsets.right;
- }
- }
-